home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # init.demo - Corollary Multiprocessor Demo Software
- # custom installation script
- #
- # Copyright (C) Corollary, Inc., 1986, 1987, 1988, 1989, 1990, 1991.
- # All Rights Reserved.
- # This Module contains Proprietary Information of
- # Corollary, Inc., and should be treated as Confidential.
- #
-
- PRODUCT="Corollary Multiprocessor Demo"
-
- #
- # Set up environment.
- #
- II_SYSTEM=/usr
- export II_SYSTEM
- PATH=$PATH:$II_SYSTEM/bin/X11:
- export PATH
-
- while true
- do
- cat << EOF
-
- Removing the $PRODUCT system.
-
- Select an option for $PRODUCT removal:
-
- 1. Remove xmpstat.
-
- 2. Remove User demo.
-
- EOF
- echo "Enter choice (default is 1): \c"
- read line
- case $line in
- "1"|"")
- rm -fr /usr/bin/X11/xmpstat
- rm -fr /usr/bin/X11/xmpstat.uid
- rm -fr /usr/bin/X11/xmpstat.man
- break
- ;;
- "2")
- rm -fr /usr/bin/X11/userdemo
- rm -fr /usr/bin/X11/userdemo.uid
- rm -fr /usr/bin/X11/User
- rm -fr /usr/bin/X11/User10
- rm -fr /usr/bin/X11/icon.up
- rm -fr /usr/bin/X11/icon.xbm
- break
- ;;
- *)
- echo invalid selection: please try again
- ;;
- esac
- done
-
- exit 0
-